home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- *
- * Sounds.h
- *
- * Global function prototypes for Sounds.c
- *
- ****************************************************************************/
-
- #ifndef __SOUNDS__
- #define __SOUNDS__
-
- // ===============================================================
- // public
-
- OSErr InitSpeechManager (void);
- void PlaySound (short sndResourceID);
-
- void Say (char *voiceName, char *message);
- OSErr SayHandle (char *voiceName, Handle message);
-
- OSErr SayPString (StringPtr string); // default voice/synth
-
- // ===============================================================
-
- #endif
-